home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr22 / croe10.zip / CROE.DOC < prev    next >
Text File  |  1993-05-01  |  2KB  |  55 lines

  1. CheckRangeOddEven (CROE)        Version 1.0               08/08/92
  2.  
  3. This program has 3 functions and is designed for batch file usage:
  4.  
  5. 1. Sets DOS error level 1 when DOS day of the month is an odd number, 0 if
  6.    day of month is an even number.  To have it set error level for odd or
  7.    even simply run the program without any command line parameters.
  8.  
  9.         ie. CROE
  10.             :  Following line checks for error level of 1
  11.             if errorlevel 1 goto odd
  12.             :  Following line checks for error level less than 1
  13.             if not errorlevel 1 goto even
  14.  
  15. 2. Sets DOS error level 1 if the day of the month is equal to the day passed
  16.    on the command line. Sets the error level to 0 if the day is not equal.
  17.  
  18.         ie. CROE 7
  19.             :  Following line checks for error level of 1
  20.             if errorlevel 1 goto seven
  21.  
  22. 3. Sets DOS error level 1 if day of the month is within the day range passed
  23.    on the command line, 0 if outside the range.
  24.  
  25.         ie. CROE 7 15   or   CROE 15 7
  26.             :  Following line checks for error level of 1
  27.             if errorlevel 1 goto range_OK
  28.  
  29.  
  30. Simply run this program from any directory if you have placed CROE.COM into
  31. a directory that is in your DOS path or it may be run passing the path on
  32. the command line, or lastly, it is in the current directory.
  33.  
  34. v1.0 - Initial release - 08/08/92
  35.  
  36. I have tested this program with DOS 5.0, DV and a 5 node Lantastic system
  37. without detecting any problems, but as with any software, wide variations in
  38. system configurations can sometimes cause unexpected or unforseeable
  39. results.  For this reason, I make no warranties with respect to this program
  40. as to its usability, safety to data, or any results deriving from its use,
  41. and accept no responsibility for any loss or damages directly or indirectly
  42. caused by using it.
  43.  
  44. If this program is useful to you, a modest fee of $5.00 would be in order.
  45. The fees will entice me to release other small utilities that I have on hand
  46. and to release new utilities in the future.
  47.  
  48. Any bug reports, comments or suggestion are solicited and welcome!
  49.  
  50. Thanks,
  51.  
  52. Cam DeBuck
  53. 230 Medford Drive
  54. Fayetteville, GA  30214-1948
  55.